home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Tools & Apps / OS⁄Toolbox / QuickDraw / RlePict / URT 3.0 Blurb < prev   
Encoding:
Text File  |  1991-03-08  |  7.6 KB  |  169 lines  |  [TEXT/MACA]

  1. The Utah Raster Toolkit (described below) version 3.0 is now ready for
  2. release.  Currently, it is only available by anonymous FTP over the
  3. Internet.  We are working out other distribution methods.
  4.  
  5. Further discussions and announcements (patches, upgrades, etc.) will take
  6. place on the newsgroup alt.graphics.pixutils, and via the toolkit mailing
  7. list (send mail to toolkit-request@caen.engin.umich.edu to get on it).
  8.  
  9.  
  10. =Spencer W. Thomas            EECS Dept, U of Michigan, Ann Arbor, MI 48109
  11. spencer@eecs.umich.edu                313-936-2616 (8-6 E[SD]T M-F)
  12.  
  13.                      THE UTAH RASTER TOOLKIT
  14.  
  15. The Utah Raster toolkit is a collection of programs and C routines for
  16. dealing with raster images commonly encountered in computer graphics.  It
  17. provides the following major functions:
  18.  
  19.       * A device and system independent image format for storing images
  20.         and information about them.  Called the RLE format, it uses
  21.         run length encoding to reduce storage space for most images.
  22.  
  23.       * A library of C routines for reading, writing and manipulating
  24.         images stored in the RLE format.
  25.  
  26.       * A collections of programs for manipulating and displaying RLE
  27.         images.
  28.  
  29.  
  30. The Format:
  31.  
  32.   The device independent RLE file has two parts, the header, which stores
  33.   information about the image (size, position, channel information,
  34.   color maps, comments, etc), and the actual image data in a run length
  35.   encoded format.  The RLE format often requires about a third of the
  36.   available space for most "image synthesis" style images.  If the image
  37.   does not compress well, the RLE format stores it as straight pixel data
  38.   with little extra overhead.  The format was first developed around
  39.   1983 at the University of Utah.
  40.  
  41. The Library:
  42.  
  43.   C routines are provided for setting up and reading the image header,
  44.   and for reading and writing the image a scanline at a time.  Images can
  45.   be read or written using two different methods.  Using the "row" method,
  46.   the library performs the RLE encoding and decoding.  With the "raw" method,
  47.   scanlines are constructed directly with RLE opcodes.  Additional routines
  48.   are available for generating dither matrices (e.g., for display programs
  49.   running on devices with less than 24 bits of color).
  50.  
  51. The Tools:
  52.   applymap   - Apply color map values to pixel values.
  53.   avg4       - Downfilter an image by 1/4, generating a matte channel if one
  54.                didn't previously exist
  55.   crop       - Crop an image.
  56.   dvirle     - Convert TeX output into anti-aliased images.
  57.   fant       - Rotate and/or scale in image by an arbitrary (float) value.
  58.   mcut       - Quantize an image from 24 to eight bits using the median cut
  59.                algorithm.
  60.   mergechan  - Merge several channels from different files into a single
  61.                RLE file.
  62.   pyrmask    - Blend images using Gaussian pyramids.
  63.   repos      - Change the position in the RLE header.
  64.   rleClock   - Generate an image of a clock.
  65.   rleaddcom  - Add a comment to the RLE file's header.
  66.   rlebg      - Generate a solid or variable background.
  67.   rlebox     - Find the actual non-background area of an image.
  68.   rlecomp    - Digital image compositor.  Provides the operations over, atop,
  69.                in, out, xor, plus, minus and diff on two images.
  70.   rledither  - Floyd-Steinberg to a given color map.
  71.   rleflip    - Rotate an image by 90/180 degree increments.
  72.   rlehdr     - Dump the contents of the RLE header in human readable form.
  73.   rlehisto   - Generate the histogram of an RLE file.
  74.   rleldmap   - Load a color map into an RLE file from a variety of sources.
  75.   rlemandl   - Generate Mandlebrot sets as RLE files.
  76.   rlenoise   - Adds random noise to an image.
  77.   rlepatch   - Overlay several smaller images over a larger one.
  78.   rleprint   - Print all pixel values.
  79.   rlequant   - Variance-based color quantization.
  80.   rlescale   - Generates gray scale and color scale RLE files.
  81.   rleselect  - Select specific images from a file.
  82.   rlesetbg   - Set the background color stored in the RLE header.
  83.   rleskel    - A skeleton application, for rolling your own.
  84.   rlespiff   - Simple contrast enhancement to "spiff up" images.
  85.   rlesplice  - Splice images together horizontally or vertically.
  86.   rlesplit   - Split a file containing several images into several files.
  87.   rleswap    - Swap, copy or delete channels in an RLE file.
  88.   rlezoom    - Enlarge or shrink an image with pixel replication.
  89.   smush      - Perform a simple Gaussian filter on an image.
  90.   to8        - Convert a 24 bit RGB image to an eight bit dithered one.
  91.   tobw       - Convert 24 bits to 8 bits black and white.
  92.   unexp      - Convert an "exponential" image to a displayable one.
  93.   unslice    - Quickly assemble an image from several horizontal strips
  94.  
  95.   Format conversion programs are provided for:
  96.       - Ascii (line printer pictures) (to)
  97.       - Cubicomp image format (from)
  98.       - GIF (to and from)
  99.       - MacPaint (to and from)
  100.       - PBMPLUS pgm (from) and ppm (to and from)
  101.       - PostScript (to)
  102.       - Sun rasterfiles (to and from)
  103.       - Targa image format (from)
  104.       - TIFF (to and from)
  105.       - Wasatch paint systems (from)
  106.       - Wavefront 'RLA' format (to and from)
  107.       - Simple pixel streams (color & B&W) (to and from)
  108.  
  109.   Display programs are provided for:
  110.   get4d      - SGI Iris 4D workstation
  111.   get_orion  - Orion displays
  112.   getap      - Apollo workstations
  113.   getbob     - HP Series 300 ("bobcat") running Windows 9000
  114.   getcx3d    - Chromatics CX1500 display
  115.   getfb      - BRL "libfb" displays
  116.   getgmr     - Grinnell GMR-27 (remember those?)
  117.   getiris    - Iris in raw 24 bit mode.
  118.   getmac     - Macintosh.
  119.   getmex     - Iris running Mex
  120.   getqcr     - Photograph images with the Matrix QCR-Z camera.
  121.   getren     - HP 98721 "Renaissance" display
  122.   getsun     - Suns running Suntools
  123.   getx10     - Workstations running the X10 window system
  124.   getx11     - Workstations running X11
  125.              - [Note display programs for a particular device are
  126.               simple to add]
  127.  
  128.   All the tools are designed to pipe together, so they can be used as
  129.   filters on images much like the standard Unix tools filter text.
  130.  
  131. Plus:
  132.  
  133.   The raster toolkit also includes Unix man pages for the library and
  134.   commands, some sample images, and additional documentation.
  135.  
  136. System Requirements:
  137.  
  138.   We have successfully ported the Raster Toolkit to a number of Unix
  139.   systems, including 4.2/4.3bsd (Vax, Sun, etc), Apollo Domain/IX, HP
  140.   Series 300, SGI Iris, IBM RT and RS6000, Stardent GS-1000, Cray
  141.   running UNICOS.  Display programs are included for several devices.
  142.   Creating display programs for additional devices is a
  143.   straightforward task.
  144.  
  145. Distribution:
  146.  
  147.   For Internet sites, the toolkit may be obtained via anonymous FTP to
  148.   the sites listed below, in the file pub/urt-3.0.tar.Z.  Some sample
  149.   images are in the file pub/urt-img.tar.Z, and the file
  150.   pub/urt-doc.tar.Z contains some (somewhat out-of-date) "papers"
  151.   describing the toolkit.  We are still working out distribution
  152.   mechanisms for sites not connected to the Internet.  We will
  153.   probably be adding other archive sites; please send mail to one of
  154.   the addresses below if you don't see a site near you (particularly
  155.   if you are on the other side of the Atlantic or Pacific).  If you
  156.   would like to offer to be an archive site, please let us know, too.
  157.  
  158.       cs.utah.edu (128.110.4.21)
  159.       weedeater.math.yale.edu (130.132.23.17)
  160.       freebie.engin.umich.edu (35.2.68.23)
  161.  
  162.   Although the Raster Toolkit software is copyrighted, it may be freely
  163.   re-distributed on a "GNU-like" basis.
  164.  
  165. If you have further questions, please direct them to
  166.       toolkit-request@cs.utah.edu
  167. or    urt-request@caen.engin.umich.edu
  168. (but not both).
  169.